package com.nielsenedu.bankaccount;

/**
 * The purpose of this class is to test the functionality
 * of the class BankAccount.
 * 
 * @author Christopher Nielsen
 * @author 你的中文姓名 Your English Name
 *
 */
public class TestBankAccount {

	public static void main(String[] args) {
		BankAccount myBankAccount = new BankAccount();
		BankAccount yourBankAccount = new BankAccount();
		
		// Add initial code here
		
		myBankAccount.printAccountInfo();
		System.out.println();
		yourBankAccount.printAccountInfo();
	}
}
